home *** CD-ROM | disk | FTP | other *** search
- /*---------------------------------------------------------------------------
-
- Program name: Phinter utility program.
-
- Author: Gareth Williams
-
- Description:
-
- Modification history : (Version), (Date), (Name), (Description).
-
- 1.0, 1st March 1991, G. Williams, First Version.
-
- ----------------------------------------------------------------------------*/
-
- #include <stdio.h>
- #include <math.h>
- #include <phigs.h>
- #include "ptk.h"
-
- /*--------------------------------------------------------------------------*/
-
- main()
- {
- ptk_inithashtables();
- ptk_createhashtable("structureid", 1, 100);
- ptk_createhashtable("colourindex", 2, 32);
- ptk_createhashtable("label", 1, 100);
- ptk_createhashtable("pickid", 1, 100);
- ptk_createhashtable("viewindex", 1, 64);
- ptk_createhashtable("name", 1, 100);
- ptk_callphinter();
- exit(0);
- }
-
- /*--------------------------------------------------------------------------*/
-
- /* end of phinter.c */
-